home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / gate / RCS / gateInt.h,v < prev   
Text File  |  1992-06-05  |  1KB  |  58 lines

  1. head     1.1;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.1
  10. date     92.06.05.12.49.19;  author jhh;  state Exp;
  11. branches ;
  12. next     ;
  13.  
  14.  
  15. desc
  16. @@
  17.  
  18.  
  19.  
  20. 1.1
  21. log
  22. @Initial revision
  23. @
  24. text
  25. @/*
  26.  * gateInt.h --
  27.  *
  28.  *    Declarations used internally by the "Gate_" procedures.
  29.  *
  30.  * Copyright 1992 Regents of the University of California
  31.  * Permission to use, copy, modify, and distribute this
  32.  * software and its documentation for any purpose and without
  33.  * fee is hereby granted, provided that the above copyright
  34.  * notice appear in all copies.  The University of California
  35.  * makes no representations about the suitability of this
  36.  * software for any purpose.  It is provided "as is" without
  37.  * express or implied warranty.
  38.  *
  39.  * $Header: /user6/voelker/src/hosttest/RCS/gateInt.h,v 1.1 92/03/26 19:47:29 voelker Exp Locker: voelker $ SPRITE (Berkeley)
  40.  */
  41.  
  42. #ifndef _GATEINT
  43. #define _GATEINT
  44.  
  45. #ifndef _STDIO
  46. #include <stdio.h>
  47. #endif
  48.  
  49. /*
  50.  * Information about the current database file:
  51.  */
  52.  
  53. extern FILE *gateFile;        /* Non-zero? Then it points to an open file. */
  54. extern char *gateFileName;    /* Name of database file to use. */
  55.  
  56. #endif _HOSTINT
  57. @
  58.